home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / IP_Graph3D / typedefs.h < prev   
Encoding:
C/C++ Source or Header  |  1991-08-17  |  133 b   |  12 lines

  1. /* typedefs.h
  2. */
  3.  
  4. typedef float **bigArray;
  5.  
  6. typedef float vector3D[3];
  7.  
  8. typedef struct PointThreeD {
  9.     float x,y,z;
  10. } PointThreeD;
  11.  
  12.